home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / graphics / 3dvect30.arj / FONT.INC < prev    next >
Text File  |  1993-11-18  |  1KB  |  56 lines

  1. ; externals from font routine
  2.  
  3.        extrn  tstring:near
  4.        extrn  string:near
  5.        extrn  initfont:near
  6.        extrn  put_at_top:near
  7.  
  8.        extrn  number_eax:dword
  9.  
  10. ; screen text macros for font routines
  11.  
  12. newtext    macro x,y,col
  13.            db -1
  14.            dw x,y
  15.            db col
  16.            endm
  17.  
  18. border     macro x1,y1,x2,y2,col
  19.            db -2
  20.            dw x1,y1,x2,y2,col
  21.            endm
  22.  
  23. fillarea   macro x1,y1,x2,y2,col
  24.            db -3
  25.            dw x1,y1,x2,y2,col
  26.            endm
  27.  
  28. hole       macro x1,y1,x2,y2,col
  29.            db -4
  30.            dw x1,y1,x2,y2,col
  31.            endm
  32.  
  33. lowercase  macro
  34.            db -5
  35.            endm
  36.  
  37. uppercase  macro
  38.            db -6
  39.            endm
  40.  
  41. steelbox   macro x1,y1,x2,y2,col,step
  42.            db -7
  43.            dw x1,y1,x2,y2,col,step
  44.            endm
  45.  
  46. repeatbit  macro bitmaploc,x1,y1,x2,y2
  47.            db -8
  48.            dd bitmaploc
  49.            dw x1,y1,x2,y2,col
  50.            endm
  51.  
  52. textend    macro
  53.            db 0
  54.            endm
  55.  
  56.